/-boot
/-docs
/-editor
/-files
/-files-old
/-imports
/-layout
/-shell
/-storage ...
/-storage/attached ...
/-storage/attached/api
DetectStorage.ts
LoadStorage.ts
LoadStorageRecipient.ts
PropertiesByFullPath.ts
StorageAccess.ts
StorageDetect.ts
UpdateStorage.ts
/-storage/attached/dom
/-storage/attached/indexedDB ...
DetectStorage.ts
FileData.ts
LoadStorage.ts
MetadataData.ts
StorageAccess.ts
StorageDetect.ts
UpdateStorage.ts
functions.ts
/-storage/attached/localStorage
/-storage/attached/webSQL
/-tests
/-typings
Dom.ts
TypeScriptService.ts
functions.ts
ko.ts
nteapo.html
persistence.api.ts
persistence.ts
shell.ts
teapo.html
teapo.ts
try.html
try.js
xxxxxxxxxx
15
1
module teapo.storage.attached.indexedDB {
2
​
3
  export class StorageAccess implements attached.StorageAccess {
4
​
5
    update(
6
      byFullPath: PropertiesByFullPath,
7
      timestamp: number,
8
      callback: (error: Error) => void): void {
9
    }
10
​
11
    read(
12
      fullPath: string,
13
      callback: (properties: { [property: string]: string; }) => void): void {
14
      
15
    }
16
​
17
  }
18
  
19
}
7:47